home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / delfin.zip / OPTREG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-08-06  |  199b  |  19 lines

  1. unit Optreg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   Classes,Option;
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterComponents('DelFin',[TCallOption,TPutOption]);
  15. end;
  16.  
  17. end.
  18.  
  19.